home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / ansi / stdlib / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-29  |  110 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. int
  4. main(int argc, char **argv)
  5. {
  6.   printf("hello: %s\n", argv[0]);
  7.   return 0;
  8. }
  9.